home *** CD-ROM | disk | FTP | other *** search
- /* time.h - definitions for time functions.
- (C) Copyright 1983 Gregory R. Mansfield - All Rights Reserved.
- G. R. Mansfield. 83/11/27.
- Ver 1.2-4A26.
- */
-
-
- #ifndef time.h /* allow several more than 1 include of this file */
- #define time.h
-
- struct tm {
- int tm_sec;
- int tm_min;
- int tm_hour;
- int tm_mday;
- int tm_mon;
- int tm_year;
- int tm_wday;
- int tm_yday;
- int tm_isdst;
- };
-
- char *asctime(tm);
- char *cclock(clock);
- char *ctime(clock);
- char *ddate(clock);
- struct tm *localtime(clock);
-
- #endif
-